home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1997 #1 / Amiga Plus CD - 1997 - No. 01.iso / pd / programmierung / mesa-1.2.8 / samples / accum.c < prev    next >
C/C++ Source or Header  |  1996-05-27  |  4KB  |  160 lines

  1. /*
  2.  * Copyright (c) 1991, 1992, 1993 Silicon Graphics, Inc.
  3.  *
  4.  * Permission to use, copy, modify, distribute, and sell this software and
  5.  * its documentation for any purpose is hereby granted without fee, provided
  6.  * that (i) the above copyright notices and this permission notice appear in
  7.  * all copies of the software and related documentation, and (ii) the name of
  8.  * Silicon Graphics may not be used in any advertising or
  9.  * publicity relating to the software without the specific, prior written
  10.  * permission of Silicon Graphics.
  11.  *
  12.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF
  13.  * ANY KIND,
  14.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
  15.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  16.  *
  17.  * IN NO EVENT SHALL SILICON GRAPHICS BE LIABLE FOR
  18.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  19.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
  21.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  22.  * OF THIS SOFTWARE.
  23.  */
  24. #include <stdio.h>
  25. #include <string.h>
  26. #include <unistd.h>
  27. #include <stdlib.h>
  28. #include "gltk.h"
  29.  
  30.  
  31. GLenum doubleBuffer, directRender;
  32. GLint thing1, thing2;
  33.  
  34.  
  35. static void Init(void)
  36. {
  37.  
  38.     glClearColor(0.0, 0.0, 0.0, 0.0);
  39.     glClearAccum(0.0, 0.0, 0.0, 0.0);
  40.  
  41.     thing1 = glGenLists(1);
  42.     glNewList(thing1, GL_COMPILE);
  43.     glColor3f(1.0, 0.0, 0.0);
  44.     glRectf(-1.0, -1.0, 1.0, 0.0);
  45.     glEndList();
  46.  
  47.     thing2 = glGenLists(1);
  48.     glNewList(thing2, GL_COMPILE);
  49.     glColor3f(0.0, 1.0, 0.0);
  50.     glRectf(0.0, -1.0, 1.0, 1.0);
  51.     glEndList();
  52. }
  53.  
  54. static void Reshape(int width, int height)
  55. {
  56.  
  57.     glViewport(0, 0, (GLint)width, (GLint)height);
  58.  
  59.     glMatrixMode(GL_PROJECTION);
  60.     glLoadIdentity();
  61.     glMatrixMode(GL_MODELVIEW);
  62.     glLoadIdentity();
  63. }
  64.  
  65. static GLenum Key(int key, GLenum mask)
  66. {
  67.  
  68.     switch (key) {
  69.       case TK_ESCAPE:
  70.     tkQuit();
  71.       case TK_1:
  72.     glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
  73.     break;
  74.       case TK_2:
  75.     glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
  76.     break;
  77.       default:
  78.     return GL_FALSE;
  79.     }
  80.     return GL_TRUE;
  81. }
  82.  
  83. static void Draw(void)
  84. {
  85.  
  86.     glPushMatrix();
  87.  
  88.     glScalef(0.8, 0.8, 1.0);
  89.  
  90.     glClear(GL_COLOR_BUFFER_BIT);
  91.     glCallList(thing1);
  92.     glAccum(GL_LOAD, 0.5);
  93.  
  94.     glClear(GL_COLOR_BUFFER_BIT);
  95.     glCallList(thing2);
  96.     glAccum(GL_ACCUM, 0.5);
  97.  
  98.     glAccum(GL_RETURN, 1.0);
  99.  
  100.     glPopMatrix();
  101.  
  102.     glFlush();
  103.  
  104.     if (doubleBuffer) {
  105.     tkSwapBuffers();
  106.     }
  107. }
  108.  
  109. static GLenum Args(int argc, char **argv)
  110. {
  111.     GLint i;
  112.  
  113.     doubleBuffer = GL_FALSE;
  114.     directRender = GL_TRUE;
  115.  
  116.     for (i = 1; i < argc; i++) {
  117.     if (strcmp(argv[i], "-sb") == 0) {
  118.         doubleBuffer = GL_FALSE;
  119.     } else if (strcmp(argv[i], "-db") == 0) {
  120.         doubleBuffer = GL_TRUE;
  121.     } else if (strcmp(argv[i], "-dr") == 0) {
  122.         directRender = GL_TRUE;
  123.     } else if (strcmp(argv[i], "-ir") == 0) {
  124.         directRender = GL_FALSE;
  125.     } else {
  126.         printf("%s (Bad option).\n", argv[i]);
  127.         return GL_FALSE;
  128.     }
  129.     }
  130.     return GL_TRUE;
  131. }
  132.  
  133. void main(int argc, char **argv)
  134. {
  135.     GLenum type;
  136.  
  137.     if (Args(argc, argv) == GL_FALSE) {
  138.     tkQuit();
  139.     }
  140.  
  141.     tkInitPosition(0, 0, 300, 300);
  142.  
  143.     type = TK_RGB | TK_ACCUM;
  144.     type |= (doubleBuffer) ? TK_DOUBLE : TK_SINGLE;
  145.     type |= (directRender) ? TK_DIRECT : TK_INDIRECT;
  146.     tkInitDisplayMode(type);
  147.  
  148.     if (tkInitWindow("Accum Test") == GL_FALSE) {
  149.     tkQuit();
  150.     }
  151.  
  152.     Init();
  153.  
  154.     tkExposeFunc(Reshape);
  155.     tkReshapeFunc(Reshape);
  156.     tkKeyDownFunc(Key);
  157.     tkDisplayFunc(Draw);
  158.     tkExec();
  159. }
  160.